const compress/flate.tableBits

3 uses

	compress/flate (current package)
		deflatefast.go#L13: 	tableBits  = 14             // Bits used in the table.
		deflatefast.go#L14: 	tableSize  = 1 << tableBits // Size of the table.
		deflatefast.go#L16: 	tableShift = 32 - tableBits // Right-shift to get the tableBits most significant bits of a uint32.